home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / dasv10_.arj / RECFACT.CPP < prev    next >
Encoding:
Text File  |  1993-08-13  |  164 b   |  9 lines

  1. // math.lib function r_factorial()
  2.  
  3. long recursive_fact(long number)
  4. {
  5.     if (number <= 1)
  6.         return 1;
  7.     else
  8.         return (number * recursive_fact(number - 1));
  9. }